Transcription: Don't abuse C data. C data is real easy to abuse because what I see a lot of is people find out what C data is capable of and they start storing everything in C data. This is a bad idea. XML is about structured content. C data is there because not everything fits in a structured content environment, so use it sparingly. It's very nice if you want to embed things like binary information that you encoded. I've seen people embed things like C++ language code, VB code, Java code. JavaScript code, all sorts of things in there. So just be sparing with C data. It's a great feature. Just don't overuse ...